home *** CD-ROM | disk | FTP | other *** search
-
- <<< LINES.DOC >>>
-
- Lines.Doc was created in conjunction with FRAMES.DOC. I like it because
- instead of typing LOCATE 1, 1: PRINT STRING(80, "-") to get a line
- across my screen I now just call the routine as follows:
-
- CAll horizon(1, 20, 79, 155)
-
- or for a vertical line:
-
- CALL vertical(11, 1, 80, 58)
-
- The sequence to call either vertical or horizontal lines is:
-
- CALL ###(Row,Column,Length,ASCII Character)
-
- ### = Specify VERTICAL or HORIZON
-
- Row = What Row to start the line on
-
- Column = What Colunm to start line at
-
- Length = How long do you want line to be
-
- ASCII Character = Any Valid ASCII Character (See FRAMES.BAS for examples)
-
- ## = Frame number to call ( 1 through 57 )
-
-
- (See FRAMES.DOC for Information on making FRAMES)
-
- 4/90 EPTING
-
-